func time.appendInt

41 uses

	time (current package)
		format.go#L399: func appendInt(b []byte, x int, width int) []byte {
		format.go#L501: 	b = appendInt(b, nanosec, 9)
		format.go#L545: 			buf = appendInt(buf, int(m0), 0)
		format.go#L548: 		buf = appendInt(buf, int(m1), wid)
		format.go#L550: 		buf = appendInt(buf, int(m2), 9)
		format.go#L565: 	buf = appendInt(buf, year, 0)
		format.go#L572: 		buf = appendInt(buf, int(month), 0)
		format.go#L575: 	buf = appendInt(buf, day, 0)
		format.go#L577: 	buf = appendInt(buf, hour, 0)
		format.go#L579: 	buf = appendInt(buf, minute, 0)
		format.go#L581: 	buf = appendInt(buf, second, 0)
		format.go#L583: 	buf = appendInt(buf, t.Nanosecond(), 0)
		format.go#L689: 			b = appendInt(b, y%100, 2)
		format.go#L691: 			b = appendInt(b, year, 4)
		format.go#L698: 			b = appendInt(b, int(month), 0)
		format.go#L700: 			b = appendInt(b, int(month), 2)
		format.go#L707: 			b = appendInt(b, day, 0)
		format.go#L712: 			b = appendInt(b, day, 0)
		format.go#L714: 			b = appendInt(b, day, 2)
		format.go#L722: 			b = appendInt(b, yday, 0)
		format.go#L724: 			b = appendInt(b, yday, 3)
		format.go#L726: 			b = appendInt(b, hour, 2)
		format.go#L733: 			b = appendInt(b, hr, 0)
		format.go#L740: 			b = appendInt(b, hr, 2)
		format.go#L742: 			b = appendInt(b, min, 0)
		format.go#L744: 			b = appendInt(b, min, 2)
		format.go#L746: 			b = appendInt(b, sec, 0)
		format.go#L748: 			b = appendInt(b, sec, 2)
		format.go#L777: 			b = appendInt(b, zone/60, 2)
		format.go#L782: 				b = appendInt(b, zone%60, 2)
		format.go#L790: 				b = appendInt(b, absoffset%60, 2)
		format.go#L807: 			b = appendInt(b, zone/60, 2)
		format.go#L808: 			b = appendInt(b, zone%60, 2)
		format_rfc3339.go#L23: 	b = appendInt(b, year, 4)
		format_rfc3339.go#L25: 	b = appendInt(b, int(month), 2)
		format_rfc3339.go#L27: 	b = appendInt(b, day, 2)
		format_rfc3339.go#L33: 	b = appendInt(b, hour, 2)
		format_rfc3339.go#L35: 	b = appendInt(b, min, 2)
		format_rfc3339.go#L37: 	b = appendInt(b, sec, 2)
		format_rfc3339.go#L56: 	b = appendInt(b, zone/60, 2)
		format_rfc3339.go#L58: 	b = appendInt(b, zone%60, 2)